TLS Version
(MI.CertificateMetadata)
Overview
By default, TLS versions 1
, 1.1
, 1.2
, and 1.3
are enabled. You can configure a TLS Version rule to limit TLS support to selected versions.
Example
This example disables support for TLS version 1.0
.
{
"generic-metadata-type": "MI.CertificateMetadata",
"generic-metadata-value": {
"encryption-level": {
"protocols": [
"TLSv1.1",
"TLSv1.2",
"TLSv1.3"
]
}
}
}
Supported Properties
Field | Description | Valid Values |
---|---|---|
encryption-level | An array of protocols | |
protocols | Supported protocols. If this component is not present in the JSON format, support for all 4 protocols is implicit. | TLSv1.0 TLSv1.1 TLSv1.2 TLSv1.3 |